home *** CD-ROM | disk | FTP | other *** search
/ Aminet 8 / Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso / Aminet / dev / gcc / gcc270_base.lha / gnu / GccFindHit / Makefile < prev    next >
Makefile  |  1995-05-23  |  362b  |  12 lines

  1. CC = gcc
  2. #uncomment the following line if the host is a little endian machine
  3. #(the Amiga is *not* little endian :-)
  4. #ENDIANNESS = -DLITTLE_ENDIAN
  5.  
  6. #Comment the following line if your compiler doesn't like it
  7. #or if you absolutely want ixemul
  8. AFLAGS = -noixemul
  9.  
  10. GccFindHit: GccFindHit.c defs.h
  11.     $(CC) $(AFLAGS) -Wall -O $(ENDIANNESS) GccFindHit.c -o GccFindHit
  12.